home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 0957 / gnugrep / cl / obstack.c < prev    next >
C/C++ Source or Header  |  1996-06-28  |  14KB  |  457 lines

  1. /* obstack.c - subroutines used implicitly by object stack macros
  2.    Copyright (C) 1988, 1993 Free Software Foundation, Inc.
  3.  
  4. This program is free software; you can redistribute it and/or modify it
  5. under the terms of the GNU General Public License as published by the
  6. Free Software Foundation; either version 2, or (at your option) any
  7. later version.
  8.  
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. GNU General Public License for more details.
  13.  
  14. You should have received a copy of the GNU General Public License
  15. along with this program; if not, write to the Free Software
  16. Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  17.  
  18. #include "obstack.h"
  19.  
  20. /* This is just to get __GNU_LIBRARY__ defined.  */
  21. #include <stdio.h>
  22. #include <stdlib.h>
  23.  
  24.  
  25. /* Comment out all this code if we are using the GNU C Library, and are not
  26.    actually compiling the library itself.  This code is part of the GNU C
  27.    Library, but also included in many other GNU distributions.  Compiling
  28.    and linking in this code is a waste when using the GNU C library
  29.    (especially if it is a shared library).  Rather than having every GNU
  30.    program understand `configure --with-gnu-libc' and omit the object files,
  31.    it is simpler to just do this in the source for each such file.  */
  32.  
  33. #if defined (_LIBC) || !defined (__GNU_LIBRARY__)
  34.  
  35.  
  36. #ifdef __STDC__
  37. #define POINTER void *
  38. #else
  39. #define POINTER char *
  40. #endif
  41.  
  42. /* Determine default alignment.  */
  43. struct fooalign {char x; double d;};
  44. #define DEFAULT_ALIGNMENT  \
  45.   ((PTR_INT_TYPE) ((char *)&((struct fooalign *) 0)->d - (char *)0))
  46. /* If malloc were really smart, it would round addresses to DEFAULT_ALIGNMENT.
  47.    But in fact it might be less smart and round addresses to as much as
  48.    DEFAULT_ROUNDING.  So we prepare for it to do that.  */
  49. union fooround {long x; double d;};
  50. #define DEFAULT_ROUNDING (sizeof (union fooround))
  51.  
  52. /* When we copy a long block of data, this is the unit to do it with.
  53.    On some machines, copying successive ints does not work;
  54.    in such a case, redefine COPYING_UNIT to `long' (if that works)
  55.    or `char' as a last resort.  */
  56. #ifndef COPYING_UNIT
  57. #define COPYING_UNIT int
  58. #endif
  59.  
  60. /* The non-GNU-C macros copy the obstack into this global variable
  61.    to avoid multiple evaluation.  */
  62.  
  63. struct obstack *_obstack;
  64.  
  65. /* Define a macro that either calls functions with the traditional malloc/free
  66.    calling interface, or calls functions with the mmalloc/mfree interface
  67.    (that adds an extra first argument), based on the state of use_extra_arg.
  68.    For free, do not use ?:, since some compilers, like the MIPS compilers,
  69.    do not allow (expr) ? void : void.  */
  70.  
  71. #define CALL_CHUNKFUN(h, size) \
  72.   (((h) -> use_extra_arg) \
  73.    ? (*(h)->chunkfun) ((h)->extra_arg, (size)) \
  74.    : (*(h)->chunkfun) ((size)))
  75.  
  76. #define CALL_FREEFUN(h, old_chunk) \
  77.   do { \
  78.     if ((h) -> use_extra_arg) \
  79.       (*(h)->freefun) ((h)->extra_arg, (old_chunk)); \
  80.     else \
  81.       (*(h)->freefun) ((old_chunk)); \
  82.   } while (0)
  83.  
  84.  
  85. /* Initialize an obstack H for use.  Specify chunk size SIZE (0 means default).
  86.    Objects start on multiples of ALIGNMENT (0 means use default).
  87.    CHUNKFUN is the function to use to allocate chunks,
  88.    and FREEFUN the function to free them.  */
  89.  
  90. void
  91. _obstack_begin (h, size, alignment, chunkfun, freefun)
  92.      struct obstack *h;
  93.      int size;
  94.      int alignment;
  95.      POINTER (*chunkfun) ();
  96.      void (*freefun) ();
  97. {
  98.   register struct _obstack_chunk* chunk; /* points to new chunk */
  99.  
  100.   if (alignment == 0)
  101.     alignment = DEFAULT_ALIGNMENT;
  102.   if (size == 0)
  103.     /* Default size is what GNU malloc can fit in a 4096-byte block.  */
  104.     {
  105.       /* 12 is sizeof (mhead) and 4 is EXTRA from GNU malloc.
  106.      Use the values for range checking, because if range checking is off,
  107.      the extra bytes won't be missed terribly, but if range checking is on
  108.      and we used a larger request, a whole extra 4096 bytes would be
  109.      allocated.
  110.  
  111.      These number are irrelevant to the new GNU malloc.  I suspect it is
  112.      less sensitive to the size of the request.  */
  113.       int extra = ((((12 + DEFAULT_ROUNDING - 1) & ~(DEFAULT_ROUNDING - 1))
  114.             + 4 + DEFAULT_ROUNDING - 1)
  115.            & ~(DEFAULT_ROUNDING - 1));
  116.       size = 4096 - extra;
  117.     }
  118.  
  119.   h->chunkfun = (struct _obstack_chunk * (*)()) chunkfun;
  120.   h->freefun = freefun;
  121.   h->chunk_size = size;
  122.   h->alignment_mask = alignment - 1;
  123.   h->use_extra_arg = 0;
  124.  
  125.   chunk = h->chunk = CALL_CHUNKFUN (h, h -> chunk_size);
  126.   h->next_free = h->object_base = chunk->contents;
  127.   h->chunk_limit = chunk->limit
  128.     = (char *) chunk + h->chunk_size;
  129.   chunk->prev = 0;
  130.   /* The initial chunk now contains no empty object.  */
  131.   h->maybe_empty_object = 0;
  132. }
  133.  
  134. void
  135. _obstack_begin_1 (h, size, alignment, chunkfun, freefun, arg)
  136.      struct obstack *h;
  137.      int size;
  138.      int alignment;
  139.      POINTER (*chunkfun) ();
  140.      void (*freefun) ();
  141.      POINTER arg;
  142. {
  143.   register struct _obstack_chunk* chunk; /* points to new chunk */
  144.  
  145.   if (alignment == 0)
  146.     alignment = DEFAULT_ALIGNMENT;
  147.   if (size == 0)
  148.     /* Default size is what GNU malloc can fit in a 4096-byte block.  */
  149.     {
  150.       /* 12 is sizeof (mhead) and 4 is EXTRA from GNU malloc.
  151.      Use the values for range checking, because if range checking is off,
  152.      the extra bytes won't be missed terribly, but if range checking is on
  153.      and we used a larger request, a whole extra 4096 bytes would be
  154.      allocated.
  155.  
  156.      These number are irrelevant to the new GNU malloc.  I suspect it is
  157.      less sensitive to the size of the request.  */
  158.       int extra = ((((12 + DEFAULT_ROUNDING - 1) & ~(DEFAULT_ROUNDING - 1))
  159.             + 4 + DEFAULT_ROUNDING - 1)
  160.            & ~(DEFAULT_ROUNDING - 1));
  161.       size = 4096 - extra;
  162.     }
  163.  
  164.   h->chunkfun = (struct _obstack_chunk * (*)()) chunkfun;
  165.   h->freefun = freefun;
  166.   h->chunk_size = size;
  167.   h->alignment_mask = alignment - 1;
  168.   h->extra_arg = arg;
  169.   h->use_extra_arg = 1;
  170.  
  171.   chunk = h->chunk = CALL_CHUNKFUN (h, h -> chunk_size);
  172.   h->next_free = h->object_base = chunk->contents;
  173.   h->chunk_limit = chunk->limit
  174.     = (char *) chunk + h->chunk_size;
  175.   chunk->prev = 0;
  176.   /* The initial chunk now contains no empty object.  */
  177.   h->maybe_empty_object = 0;
  178. }
  179.  
  180. /* Allocate a new current chunk for the obstack *H
  181.    on the assumption that LENGTH bytes need to be added
  182.    to the current object, or a new object of length LENGTH allocated.
  183.    Copies any partial object from the end of the old chunk
  184.    to the beginning of the new one.  */
  185.  
  186. void
  187. _obstack_newchunk (h, length)
  188.      struct obstack *h;
  189.      int length;
  190. {
  191.   register struct _obstack_chunk*    old_chunk = h->chunk;
  192.   register struct _obstack_chunk*    new_chunk;
  193.   register long    new_size;
  194.   register int obj_size = h->next_free - h->object_base;
  195.   register int i;
  196.   int already;
  197.  
  198.   /* Compute size for new chunk.  */
  199.   new_size = (obj_size + length) + (obj_size >> 3) + 100;
  200.   if (new_size < h->chunk_size)
  201.     new_size = h->chunk_size;
  202.  
  203.   /* Allocate and initialize the new chunk.  */
  204.   new_chunk = h->chunk = CALL_CHUNKFUN (h, new_size);
  205.   new_chunk->prev = old_chunk;
  206.   new_chunk->limit = h->chunk_limit = (char *) new_chunk + new_size;
  207.  
  208.   /* Move the existing object to the new chunk.
  209.      Word at a time is fast and is safe if the object
  210.      is sufficiently aligned.  */
  211.   if (h->alignment_mask + 1 >= DEFAULT_ALIGNMENT)
  212.     {
  213.       for (i = obj_size / sizeof (COPYING_UNIT) - 1;
  214.        i >= 0; i--)
  215.     ((COPYING_UNIT *)new_chunk->contents)[i]
  216.       = ((COPYING_UNIT *)h->object_base)[i];
  217.       /* We used to copy the odd few remaining bytes as one extra COPYING_UNIT,
  218.      but that can cross a page boundary on a machine
  219.      which does not do strict alignment for COPYING_UNITS.  */
  220.       already = obj_size / sizeof (COPYING_UNIT) * sizeof (COPYING_UNIT);
  221.     }
  222.   else
  223.     already = 0;
  224.   /* Copy remaining bytes one by one.  */
  225.   for (i = already; i < obj_size; i++)
  226.     new_chunk->contents[i] = h->object_base[i];
  227.  
  228.   /* If the object just copied was the only data in OLD_CHUNK,
  229.      free that chunk and remove it from the chain.
  230.      But not if that chunk might contain an empty object.  */
  231.   if (h->object_base == old_chunk->contents && ! h->maybe_empty_object)
  232.     {
  233.       new_chunk->prev = old_chunk->prev;
  234.       CALL_FREEFUN (h, old_chunk);
  235.     }
  236.  
  237.   h->object_base = new_chunk->contents;
  238.   h->next_free = h->object_base + obj_size;
  239.   /* The new chunk certainly contains no empty object yet.  */
  240.   h->maybe_empty_object = 0;
  241. }
  242.  
  243. /* Return nonzero if object OBJ has been allocated from obstack H.
  244.    This is here for debugging.
  245.    If you use it in a program, you are probably losing.  */
  246.  
  247. int
  248. _obstack_allocated_p (h, obj)
  249.      struct obstack *h;
  250.      POINTER obj;
  251. {
  252.   register struct _obstack_chunk*  lp;    /* below addr of any objects in this chunk */
  253.   register struct _obstack_chunk*  plp;    /* point to previous chunk if any */
  254.  
  255.   lp = (h)->chunk;
  256.   /* We use >= rather than > since the object cannot be exactly at
  257.      the beginning of the chunk but might be an empty object exactly
  258.      at the end of an adjacent chunk. */
  259.   while (lp != 0 && ((POINTER)lp >= obj || (POINTER)(lp)->limit < obj))
  260.     {
  261.       plp = lp->prev;
  262.       lp = plp;
  263.     }
  264.   return lp != 0;
  265. }
  266.  
  267. /* Free objects in obstack H, including OBJ and everything allocate
  268.    more recently than OBJ.  If OBJ is zero, free everything in H.  */
  269.  
  270. #undef obstack_free
  271.  
  272. /* This function has two names with identical definitions.
  273.    This is the first one, called from non-ANSI code.  */
  274.  
  275. void
  276. _obstack_free (h, obj)
  277.      struct obstack *h;
  278.      POINTER obj;
  279. {
  280.   register struct _obstack_chunk*  lp;    /* below addr of any objects in this chunk */
  281.   register struct _obstack_chunk*  plp;    /* point to previous chunk if any */
  282.  
  283.   lp = h->chunk;
  284.   /* We use >= because there cannot be an object at the beginning of a chunk.
  285.      But there can be an empty object at that address
  286.      at the end of another chunk.  */
  287.   while (lp != 0 && ((POINTER)lp >= obj || (POINTER)(lp)->limit < obj))
  288.     {
  289.       plp = lp->prev;
  290.       CALL_FREEFUN (h, lp);
  291.       lp = plp;
  292.       /* If we switch chunks, we can't tell whether the new current
  293.      chunk contains an empty object, so assume that it may.  */
  294.       h->maybe_empty_object = 1;
  295.     }
  296.   if (lp)
  297.     {
  298.       h->object_base = h->next_free = (char *)(obj);
  299.       h->chunk_limit = lp->limit;
  300.       h->chunk = lp;
  301.     }
  302.   else if (obj != 0)
  303.     /* obj is not in any of the chunks! */
  304.     abort ();
  305. }
  306.  
  307. /* This function is used from ANSI code.  */
  308.  
  309. void
  310. obstack_free (h, obj)
  311.      struct obstack *h;
  312.      POINTER obj;
  313. {
  314.   register struct _obstack_chunk*  lp;    /* below addr of any objects in this chunk */
  315.   register struct _obstack_chunk*  plp;    /* point to previous chunk if any */
  316.  
  317.   lp = h->chunk;
  318.   /* We use >= because there cannot be an object at the beginning of a chunk.
  319.      But there can be an empty object at that address
  320.      at the end of another chunk.  */
  321.   while (lp != 0 && ((POINTER)lp >= obj || (POINTER)(lp)->limit < obj))
  322.     {
  323.       plp = lp->prev;
  324.       CALL_FREEFUN (h, lp);
  325.       lp = plp;
  326.       /* If we switch chunks, we can't tell whether the new current
  327.      chunk contains an empty object, so assume that it may.  */
  328.       h->maybe_empty_object = 1;
  329.     }
  330.   if (lp)
  331.     {
  332.       h->object_base = h->next_free = (char *)(obj);
  333.       h->chunk_limit = lp->limit;
  334.       h->chunk = lp;
  335.     }
  336.   else if (obj != 0)
  337.     /* obj is not in any of the chunks! */
  338.     abort ();
  339. }
  340.  
  341. #if 0
  342. /* These are now turned off because the applications do not use it
  343.    and it uses bcopy via obstack_grow, which causes trouble on sysV.  */
  344.  
  345. /* Now define the functional versions of the obstack macros.
  346.    Define them to simply use the corresponding macros to do the job.  */
  347.  
  348. #ifdef __STDC__
  349. /* These function definitions do not work with non-ANSI preprocessors;
  350.    they won't pass through the macro names in parentheses.  */
  351.  
  352. /* The function names appear in parentheses in order to prevent
  353.    the macro-definitions of the names from being expanded there.  */
  354.  
  355. POINTER (obstack_base) (obstack)
  356.      struct obstack *obstack;
  357. {
  358.   return obstack_base (obstack);
  359. }
  360.  
  361. POINTER (obstack_next_free) (obstack)
  362.      struct obstack *obstack;
  363. {
  364.   return obstack_next_free (obstack);
  365. }
  366.  
  367. int (obstack_object_size) (obstack)
  368.      struct obstack *obstack;
  369. {
  370.   return obstack_object_size (obstack);
  371. }
  372.  
  373. int (obstack_room) (obstack)
  374.      struct obstack *obstack;
  375. {
  376.   return obstack_room (obstack);
  377. }
  378.  
  379. void (obstack_grow) (obstack, pointer, length)
  380.      struct obstack *obstack;
  381.      POINTER pointer;
  382.      int length;
  383. {
  384.   obstack_grow (obstack, pointer, length);
  385. }
  386.  
  387. void (obstack_grow0) (obstack, pointer, length)
  388.      struct obstack *obstack;
  389.      POINTER pointer;
  390.      int length;
  391. {
  392.   obstack_grow0 (obstack, pointer, length);
  393. }
  394.  
  395. void (obstack_1grow) (obstack, character)
  396.      struct obstack *obstack;
  397.      int character;
  398. {
  399.   obstack_1grow (obstack, character);
  400. }
  401.  
  402. void (obstack_blank) (obstack, length)
  403.      struct obstack *obstack;
  404.      int length;
  405. {
  406.   obstack_blank (obstack, length);
  407. }
  408.  
  409. void (obstack_1grow_fast) (obstack, character)
  410.      struct obstack *obstack;
  411.      int character;
  412. {
  413.   obstack_1grow_fast (obstack, character);
  414. }
  415.  
  416. void (obstack_blank_fast) (obstack, length)
  417.      struct obstack *obstack;
  418.      int length;
  419. {
  420.   obstack_blank_fast (obstack, length);
  421. }
  422.  
  423. POINTER (obstack_finish) (obstack)
  424.      struct obstack *obstack;
  425. {
  426.   return obstack_finish (obstack);
  427. }
  428.  
  429. POINTER (obstack_alloc) (obstack, length)
  430.      struct obstack *obstack;
  431.      int length;
  432. {
  433.   return obstack_alloc (obstack, length);
  434. }
  435.  
  436. POINTER (obstack_copy) (obstack, pointer, length)
  437.      struct obstack *obstack;
  438.      POINTER pointer;
  439.      int length;
  440. {
  441.   return obstack_copy (obstack, pointer, length);
  442. }
  443.  
  444. POINTER (obstack_copy0) (obstack, pointer, length)
  445.      struct obstack *obstack;
  446.      POINTER pointer;
  447.      int length;
  448. {
  449.   return obstack_copy0 (obstack, pointer, length);
  450. }
  451.  
  452. #endif /* __STDC__ */
  453.  
  454. #endif /* 0 */
  455.  
  456. #endif    /* _LIBC or not __GNU_LIBRARY__.  */
  457.